Don't quote t
authorJeremy Bryant <jb@jeremybryant.net>
Fri, 8 Mar 2024 23:25:59 +0000 (23:25 +0000)
committerJustin Burkett <justin@burkett.cc>
Tue, 12 Mar 2024 20:32:04 +0000 (16:32 -0400)
* which-key.el (which-key--replace-in-repl-list-many):
Don't quote t.

which-key.el

index 4a0b8b8e0455547aee8d2a9984f18cc7c5d2e5ce..a4aec2476d37c5a7ab894c53cd8d7be260c6448f 100644 (file)
@@ -1588,7 +1588,7 @@ Within these categories order using `which-key-key-order'."
   (let (found)
     (dolist (repl repls)
       (when (which-key--match-replacement key-binding repl)
-        (setq found 't)
+        (setq found t)
         (setq key-binding (which-key--replace-in-binding key-binding repl))))
     (when found `(replaced . ,key-binding))))